home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-06-09 | 1.8 KB | 82 lines | [TEXT/MPS ] |
- /******************************************************************************
- **
- ** Folder Name: BS
- ** File Name: Sayit.r
- **
- ** Copyright: © 1993 by Siren Enterprises, all rights reserved.
- **
- ** Description: Sayit Rez file
- **
- *******************************************************************************
- ** A U T H O R I D E N T I T Y
- *******************************************************************************
- **
- ** Initials Name
- ** -------- -----------------------------------------------
- ** KW Ken Wieschhoff
- **
- *******************************************************************************
- ** R E V I S I O N H I S T O R Y
- *******************************************************************************
- **
- ** Date Time Author Description
- ** -------- ----- ------ ---------------------------------------------
- ** 06/09/93 21:39 KW Original
- **
- ******************************************************************************/
- /*
- Sayit [-h] | <Phrase>
- -h # display help
- <Phrase> # Phrase to speak
- */
-
- #include "Cmdo.r"
-
-
- resource 'cmdo' (128) {
- {
- 245, /* Height of dialog */
- "Speaks a phrase if Lil´ BeepSay is installed.",
- {
- notDependent {}, RadioButtons {
- {
- {25, 250, 40, 410},
- "Phrase",
- "",
- Set,
- "Add the phrase to speak.",
-
- {40, 250, 55, 340},
- "Help",
- "-h",
- NotSet,
- "Display usage.",
-
- }
- },
- notDependent {}, TextBox {
- gray,
- {17, 240, 75, 450},
- "Sayit"
- },
- notDependent {}, Redirection {
- StandardInput,
- {85, 30}
- },
- notDependent {}, Redirection {
- StandardOutput,
- {85, 180}
- },
- notDependent {}, Redirection {
- DiagnosticOutput,
- {85, 330}
- },
- notDependent {}, TextBox {
- gray,
- {80, 25, 125, 450},
- "Redirection"
- },
- }
- }
- };
-